DeleteRangeElementOf
Type
statement
Summary
Deletes the elements between indices Start and Finish in Target.
Syntax
delete element <Start> to <Finish> of <Target>
Description
Removes the elements between the given indices from the list.
note
It is an error if either Start or Finish are out of range.
Parameters
Name | Type | Description |
---|---|---|
Start | An expression which evaluates to a valid integer index of Target. | |
Finish | An expression which evaluates to a valid integer index of Target. | |
Target | A list container. |